home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / mus / misc / maplay1_2.lha / maplay / ibitstream.h < prev    next >
C/C++ Source or Header  |  1994-06-23  |  2KB  |  57 lines

  1. /*
  2.  *  @(#) ibitstream.h 1.5, last edit: 6/15/94 16:55:34
  3.  *  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  4.  *  @(#) Berlin University of Technology
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21. #ifndef BITSTREAM_H
  22. #define BITSTREAM_H
  23.  
  24. #include "all.h"
  25.  
  26.  
  27. const uint32 bufferintsize = 433;
  28.     // max. 1730 bytes per frame: 144 * 384kbit/s / 32000 Hz + 2 Bytes CRC
  29.  
  30.  
  31. // Class to extract bitstrings from files:
  32. class Ibitstream
  33. {
  34.   int        fd;
  35.   uint32    buffer[bufferintsize];
  36.   uint32    framesize;        // number of valid bytes in buffer
  37.   uint32    *wordpointer;        // position of next unsigned int for get_bits()
  38.   uint32    bitindex;        // number (0-31, from MSB to LSB) of next bit for get_bits()
  39.  
  40. public:
  41.         Ibitstream (int filedescriptor);
  42.         Ibitstream (const char *filename);
  43.         ~Ibitstream (void);
  44.   int        filedescriptor (void) { return fd; };
  45.  
  46.   bool        get_header (uint32 *);
  47.         // get next 32 bits from bitstream in an unsigned int,
  48.         // returned value False => end of stream
  49.   bool        read_frame (uint32 bytesize);
  50.         // fill buffer with data from bitstream, returned value False => end of stream
  51.   uint32    get_bits (uint32 number_of_bits);
  52.         // read bits (1 <= number_of_bits <= 16) from buffer into the lower bits
  53.         // of an unsigned int. The LSB contains the latest read bit of the stream.
  54. };
  55.  
  56. #endif
  57.